home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / vbthread / modmulti.bas < prev    next >
Encoding:
BASIC Source File  |  1998-06-19  |  343 b   |  12 lines

  1. Attribute VB_Name = "modMultiThread"
  2. Option Explicit
  3. Public Sub DoSomething0(ByVal myParam As Long)
  4.   frmMultiThread.DoSomething0 myParam
  5. End Sub
  6. Public Sub DoSomething1(ByVal myParam As Long)
  7.   frmMultiThread.DoSomething1 myParam
  8. End Sub
  9. Public Sub DoSomething2(ByVal myParam As Long)
  10.   frmMultiThread.DoSomething2 myParam
  11. End Sub
  12.